home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / tpwprog7.arj / GRAPHLIB.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1992-07-02  |  562 b   |  24 lines

  1. { graphlib.pas -- Import library unit for GraphDLL }
  2.  
  3. unit GraphLib;
  4.  
  5. interface
  6.  
  7. uses Wintypes, WinProcs;
  8.  
  9. procedure Circle(DC: HDC; X, Y, W: Integer);
  10. procedure Square(DC: HDC; X, Y, W: Integer);
  11.  
  12. implementation
  13.  
  14. procedure Circle;   external 'GRAPHDLL' index 1;
  15. procedure Square;   external 'GRAPHDLL' index 2;
  16.  
  17. end.
  18.  
  19.  
  20. {--------------------------------------------------------------
  21.   Copyright (c) 1991 by Tom Swan. All rights reserved.
  22.   Revision 1.00    Date: 5/25/1991
  23. ---------------------------------------------------------------}
  24.